gtk+3.0.git
10 years agowidget-factory: Demonstrate custom context menu items
Matthias Clasen [Sun, 7 Jun 2015 05:12:18 +0000 (01:12 -0400)]
widget-factory: Demonstrate custom context menu items

Add bold/italics/underline styling to the context menu of
the 'Lorem ipsum...' text view in page 1. The point is not
to show good UI for this kind of styling, but to demonstrate
custom actions in the context menu / touch selection.

10 years agoAdwaita: Some touch selection updates
Matthias Clasen [Sun, 7 Jun 2015 05:11:32 +0000 (01:11 -0400)]
Adwaita: Some touch selection updates

Make touch selection popovers use osd style.

10 years agoUpdate touch selection style
Matthias Clasen [Sun, 7 Jun 2015 05:08:33 +0000 (01:08 -0400)]
Update touch selection style

Update style for touch selection in GtkEntry and GtkTextView
according to https://wiki.gnome.org/Design/OS/Selections

Add 'Select All' to the default actions, change actions
to use icons and move the popover to the bottom. If there is
no selection, just offer to paste.

10 years agogtkfilechooserbutton: Align the label to the left
Timm Bäder [Sat, 6 Jun 2015 09:45:11 +0000 (11:45 +0200)]
gtkfilechooserbutton: Align the label to the left

Using GtkLabel's xalign property so the label doesn't jump around when
the button gets resized.

https://bugzilla.gnome.org/show_bug.cgi?id=750477

10 years agoplaces sidebar: Make 'recent' work on other platforms
Matthias Clasen [Sat, 6 Jun 2015 21:13:22 +0000 (17:13 -0400)]
places sidebar: Make 'recent' work on other platforms

Since nautilus merge, we were not showing 'Recent' in the sidebar
if GIO did not support the recent: scheme. But the file chooser
can show recent files independent of gvfs - it loads the recent
files manually. This is relevant on Windows and OS X, where gvfs
is typically not used.

This commit adds a show-recent property which can be used to override
the recent: scheme check. We use it in the file chooser.

https://bugzilla.gnome.org/show_bug.cgi?id=750068

10 years agotexthandle: Set prelight state on the pointer-interacted handle
Carlos Garnacho [Thu, 4 Jun 2015 17:49:33 +0000 (19:49 +0200)]
texthandle: Set prelight state on the pointer-interacted handle

This will be useful with the theming changes to come.

https://bugzilla.gnome.org/show_bug.cgi?id=750396

10 years agotexthandle: Allow setting individual states, and separately to handles
Carlos Garnacho [Thu, 4 Jun 2015 17:46:20 +0000 (19:46 +0200)]
texthandle: Allow setting individual states, and separately to handles

Now each handle gets its individual current state, and we can accumulate
more than one state on these.

https://bugzilla.gnome.org/show_bug.cgi?id=750396

10 years agoAdwaita: updates style for text selection
Jakub Steiner [Thu, 4 Jun 2015 17:36:25 +0000 (19:36 +0200)]
Adwaita: updates style for text selection

- use consistent widget style. unfortunately using assets
- light/dark variant
- new assets for text selestions, using existing slider asset for
  insertion point

https://bugzilla.gnome.org/show_bug.cgi?id=750396

10 years agoAdd a tree dnd testcase
Matthias Clasen [Fri, 5 Jun 2015 12:33:59 +0000 (08:33 -0400)]
Add a tree dnd testcase

This shows a minimal setup for enabling non-row DND from a treeview.

10 years agogtkplug: set decorated to FALSE by default
Alberts Muktupāvels [Thu, 4 Jun 2015 20:40:38 +0000 (23:40 +0300)]
gtkplug: set decorated to FALSE by default

The change in c5e5ee67490e7e7af56052d8f8beb75db002c2f1 introduced
a regression - all GtkPlug windows has unexpected extra space. Fix
this by setting decorated to FALSE for GtkPlug window.

https://bugzilla.gnome.org/show_bug.cgi?id=750424

10 years agogtkrevealer: add css padding support
Carlos Soriano [Wed, 3 Jun 2015 12:58:04 +0000 (14:58 +0200)]
gtkrevealer: add css padding support

Add css padding support to GtkRevealer.

As a future work, GtkRevealer still needs to support the border
property.

https://bugzilla.gnome.org/show_bug.cgi?id=750338

10 years agoGtkScale: Move marks inward
Matthias Clasen [Thu, 4 Jun 2015 23:58:40 +0000 (19:58 -0400)]
GtkScale: Move marks inward

We don't want scale marks to affect scale sizing and positioning,
so draw them inside the range recangle. This avoids size changes
for marks that don't have labels, at least.

https://bugzilla.gnome.org/show_bug.cgi?id=749650

10 years agoUpdated Hungarian translation
Balázs Úr [Thu, 4 Jun 2015 20:54:38 +0000 (20:54 +0000)]
Updated Hungarian translation

10 years agoTrivial: remove outdated comment
Matthias Clasen [Thu, 4 Jun 2015 19:14:04 +0000 (15:14 -0400)]
Trivial: remove outdated comment

10 years agoAdwaita: entry linking logic change.
Lapo Calamandrei [Thu, 4 Jun 2015 14:19:05 +0000 (16:19 +0200)]
Adwaita: entry linking logic change.

Use the same linking logic of buttons for entries, this avoids
specialcasing rtl.

10 years agoUpdated Tajik translation
Victor Ibragimov [Thu, 4 Jun 2015 05:43:19 +0000 (05:43 +0000)]
Updated Tajik translation

10 years agowindow: Check if we can use CSD before enabling them
Emmanuele Bassi [Wed, 3 Jun 2015 13:07:29 +0000 (14:07 +0100)]
window: Check if we can use CSD before enabling them

The change in 03213b9509fc1df16c66194ea168aed6c15110e9 changed the rules
as to when CSD can be enabled, but it also unconditionally enables CSD
with the implicit assumption that client-side shadows were the real
issue, and that we could work around that by drawing our own borders.
This also means that setting a titlebar for a GtkWindow will enable CSD
unconditionally.

In reality, some window managers (like Matchbox) *only* support
server-side decorations, and will ignore all hints to the contrary, to
the point of drawing decorations at random locations on top of the
window.

Since CSD are enabled unconditionally, the GTK_CSD environment variable
is also not a suitable escape hatch.

In the grand tradition of asking ourselves if we should do something
just because we can, we should split the environment checks from the
checks on what the user requested; by doing that, we can also check
when enabling client-side decorations, and ideally bail out if needed.

https://bugzilla.gnome.org/show_bug.cgi?id=750343

10 years agomir: keep reference on queued events
William Hua [Thu, 21 May 2015 16:48:27 +0000 (11:48 -0500)]
mir: keep reference on queued events

10 years agomir: gdk_mir_window_impl_set_surface_type
William Hua [Thu, 21 May 2015 14:41:42 +0000 (09:41 -0500)]
mir: gdk_mir_window_impl_set_surface_type

10 years agomir: Create the correct surface
William Hua [Wed, 20 May 2015 22:24:20 +0000 (17:24 -0500)]
mir: Create the correct surface

10 years agomir: Remove redundant calls
William Hua [Wed, 20 May 2015 20:02:31 +0000 (15:02 -0500)]
mir: Remove redundant calls

10 years agomir: log input events properly
William Hua [Wed, 20 May 2015 18:27:36 +0000 (13:27 -0500)]
mir: log input events properly

10 years agomir: Resolve warnings
William Hua [Wed, 20 May 2015 15:38:16 +0000 (10:38 -0500)]
mir: Resolve warnings

10 years agomir: Update cursor position
William Hua [Wed, 20 May 2015 14:47:44 +0000 (09:47 -0500)]
mir: Update cursor position

10 years agomir: Remove child window rendering hack
William Hua [Tue, 19 May 2015 22:58:38 +0000 (17:58 -0500)]
mir: Remove child window rendering hack

10 years agowayland: Move DnD grab breaking function into gdkdevice-wayland.c
Carlos Garnacho [Mon, 1 Jun 2015 13:55:20 +0000 (14:55 +0100)]
wayland: Move DnD grab breaking function into gdkdevice-wayland.c

This has little to do with GdkDragContext, and a lot to do with
the GdkDevice that triggered it, seems to make more sense in
gdkdevice-wayland.c.

10 years agowayland: Split keyboard/button modifiers internally
Carlos Garnacho [Mon, 1 Jun 2015 13:53:11 +0000 (14:53 +0100)]
wayland: Split keyboard/button modifiers internally

On wl_keyboard.key/modifiers, we're just forgetting about currently
pressed mouse buttons. Fix this by storing button and key modifiers
separately, and put these together when creating the GdkEvents.

10 years agotextview: Update handles after flushing scroll changes
Carlos Garnacho [Mon, 1 Jun 2015 15:21:20 +0000 (16:21 +0100)]
textview: Update handles after flushing scroll changes

Text insertion/pasting might trigger scroll, so we'd have to wait
until the text was revalidated and the scrolling truly happened
before we can check the new handle(s) position.

10 years agodnd: Remove emission of fake button release event
Carlos Garnacho [Wed, 27 May 2015 12:22:00 +0000 (14:22 +0200)]
dnd: Remove emission of fake button release event

Nowadays (and for quite some years now) we rely on GdkEventGrabBroken
events to be received. This fake button event seems a remnant of
the early Gtk 2.x days, and is currently even inconsistent with our
event delivery model, so just remove it.

https://bugzilla.gnome.org/show_bug.cgi?id=749737

10 years agobuild: Fix make dist
Rico Tzschichholz [Tue, 2 Jun 2015 15:12:18 +0000 (17:12 +0200)]
build: Fix make dist

Revert 2 hunks introduced by 36c65c1acabfd8fb1b5b85d7b128bfd4361b6fc3

10 years agoconfigure: Require pango >= 1.37.0
Rico Tzschichholz [Tue, 2 Jun 2015 15:11:08 +0000 (17:11 +0200)]
configure: Require pango >= 1.37.0

Needed since 049cbc8b74aa7a6fff1627c8c65cbfd3c86dfde8

10 years agoupdateiconcache: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:31:07 +0000 (21:31 -0400)]
updateiconcache: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoqueryimmodules: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:30:53 +0000 (21:30 -0400)]
queryimmodules: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoxembed: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:30:40 +0000 (21:30 -0400)]
xembed: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agowidget path: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:30:26 +0000 (21:30 -0400)]
widget path: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agowidget: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:30:11 +0000 (21:30 -0400)]
widget: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agotree view: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:29:48 +0000 (21:29 -0400)]
tree view: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agotree model sort: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:29:21 +0000 (21:29 -0400)]
tree model sort: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agotree model filter: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:29:03 +0000 (21:29 -0400)]
tree model filter: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agotool palette: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:28:44 +0000 (21:28 -0400)]
tool palette: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agotext buffer: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:28:30 +0000 (21:28 -0400)]
text buffer: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoprint operation: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:28:08 +0000 (21:28 -0400)]
print operation: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agopaned: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:27:57 +0000 (21:27 -0400)]
paned: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agomenu: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:27:45 +0000 (21:27 -0400)]
menu: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agokinetic scrolling: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:27:24 +0000 (21:27 -0400)]
kinetic scrolling: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoim context: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:27:05 +0000 (21:27 -0400)]
im context: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoicon view: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:26:27 +0000 (21:26 -0400)]
icon view: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoicon theme: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:26:09 +0000 (21:26 -0400)]
icon theme: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agofile chooser: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:25:48 +0000 (21:25 -0400)]
file chooser: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoentry: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:25:32 +0000 (21:25 -0400)]
entry: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agodnd: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:25:05 +0000 (21:25 -0400)]
dnd: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agocss: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:24:48 +0000 (21:24 -0400)]
css: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agocombo box: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:24:23 +0000 (21:24 -0400)]
combo box: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agobuilder: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:24:03 +0000 (21:24 -0400)]
builder: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoapplication: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:23:39 +0000 (21:23 -0400)]
application: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoaccel map: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:22:38 +0000 (21:22 -0400)]
accel map: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoabout dialog: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:21:37 +0000 (21:21 -0400)]
about dialog: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoFix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:21:00 +0000 (21:21 -0400)]
Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoprinting: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:19:13 +0000 (21:19 -0400)]
printing: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agox11: Fix compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:17:45 +0000 (21:17 -0400)]
x11: Fix compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agowayland: Avoid compiler warnings
Matthias Clasen [Sun, 31 May 2015 01:15:33 +0000 (21:15 -0400)]
wayland: Avoid compiler warnings

Fix warnings due to -Wdeclaration-after-statement and -Wshadow.

10 years agoUpdated Tajik translation
Victor Ibragimov [Tue, 2 Jun 2015 05:20:50 +0000 (05:20 +0000)]
Updated Tajik translation

10 years agoBug 745957 - GTK+/Quartz >= 3.14.8: Symbol not found: _gtk_drag_cancel
John Ralls [Sun, 31 May 2015 18:52:35 +0000 (11:52 -0700)]
Bug 745957 - GTK+/Quartz >= 3.14.8: Symbol not found: _gtk_drag_cancel

Implement gtk_drag_cancel, made public in c160ba069 and 62616a71, in
gtkdnd-quartz.c.

10 years agoGtkStack: Don't mix code and declarations
Matthias Clasen [Sat, 30 May 2015 13:43:56 +0000 (09:43 -0400)]
GtkStack: Don't mix code and declarations

10 years agoTrivial: Use a convenience macro
Matthias Clasen [Sat, 30 May 2015 13:36:51 +0000 (09:36 -0400)]
Trivial: Use a convenience macro

g_strstrip is less obscure than the two individual functions,
so lets use it here.

10 years agofile chooser: Respect recent settings
Matthias Clasen [Sat, 30 May 2015 13:21:16 +0000 (09:21 -0400)]
file chooser: Respect recent settings

When recent files are not supported in gvfs, or turned off by
settings, we should not try to load them even if the startup
mode says so. This prevents inconsistency with the places
sidebar where 'Recent' will not appear in this case.

10 years agoplacessidebar: Simplify some code
Matthias Clasen [Sat, 30 May 2015 13:20:27 +0000 (09:20 -0400)]
placessidebar: Simplify some code

Use existing functions, instead of open-coding manipulation
of string arrays.

10 years agoflowbox: Fix compiler warnings
Benjamin Otte [Sat, 30 May 2015 03:59:55 +0000 (05:59 +0200)]
flowbox: Fix compiler warnings

Introduced in e59e38b58120f8d998b5e204506fc552e2efd00d

10 years agocssnode: Fix position invalidation
Benjamin Otte [Sat, 30 May 2015 03:43:54 +0000 (05:43 +0200)]
cssnode: Fix position invalidation

The previous code was overly complicated and wrong.

10 years agoGtkFlowBox: support positional css selectors
Matthias Clasen [Sat, 30 May 2015 03:37:42 +0000 (23:37 -0400)]
GtkFlowBox: support positional css selectors

As in the previous commit for GtkListBox, support :first-child,
:last-child, :nth-child() and :last-nth-child() selectors here.

10 years agolistbox: add support for :first-child, :last-child and others
Christian Hergert [Sat, 30 May 2015 03:03:11 +0000 (20:03 -0700)]
listbox: add support for :first-child, :last-child and others

This applies the proper CSS child ordering semantics using GtkCssNode to
GtkListBox. You can now use :first-child, :last-child, :nth-child(), and
:last-nth-child() selectors.

For example, this allows styling row separators using CSS while ignoring
the separator on the last row.

 GtkListBoxRow {
   border-bottom: 1px solid @borders;
 }
 GtkListBoxRow:last-child {
   border-bottom: none;
 }

When the sort ordering of the listbox changes, we also update the CSS
node ordering.

10 years agoUpdated Occitan translation
Cédric Valmary [Fri, 29 May 2015 21:50:59 +0000 (21:50 +0000)]
Updated Occitan translation

10 years agoFix DnD Introspection on Quartz Backend.
John Ralls [Fri, 29 May 2015 20:04:07 +0000 (13:04 -0700)]
Fix DnD Introspection on Quartz Backend.

Don't exclude the -quartz.c files from introspection_files.

10 years agoGtkStack: Interpolate between size changes
Timm Bäder [Sun, 24 May 2015 19:27:33 +0000 (21:27 +0200)]
GtkStack: Interpolate between size changes

10 years agoGtkStack: Remove some useless function calls
Timm Bäder [Sun, 24 May 2015 19:20:48 +0000 (21:20 +0200)]
GtkStack: Remove some useless function calls

We will call gtk_widget_queue_resize anyway later when finishing the
(maybe non-running) transition, which will also cause the stack to be
repainted.

10 years agoGtkStack: Keep the last_visible_child around during transitions
Timm Bäder [Sun, 24 May 2015 19:15:44 +0000 (21:15 +0200)]
GtkStack: Keep the last_visible_child around during transitions

We need it later.

10 years agoGtkStack: Misc indentation fixes
Timm Bäder [Sun, 24 May 2015 19:12:34 +0000 (21:12 +0200)]
GtkStack: Misc indentation fixes

10 years agoGtkStack: Remove useless cast
Timm Bäder [Sun, 24 May 2015 19:08:00 +0000 (21:08 +0200)]
GtkStack: Remove useless cast

10 years agoGtkStack: Remove useless function calls
Timm Bäder [Sun, 24 May 2015 18:58:01 +0000 (20:58 +0200)]
GtkStack: Remove useless function calls

These both just use the default values anyway.

10 years agoGtkStack: Save last visible widget size
Timm Bäder [Sun, 24 May 2015 14:55:34 +0000 (16:55 +0200)]
GtkStack: Save last visible widget size

When interpolating the stack size, we compute the current size by using
the prefered/minimum current size and the last size. We can't use the
last_visible_surface_allocation because that is not available until the
first _draw call and it doesn't include the child's margins.

10 years agoGtkStack: Remove gtk_widget_set_opacity call
Timm Bäder [Fri, 22 May 2015 13:43:44 +0000 (15:43 +0200)]
GtkStack: Remove gtk_widget_set_opacity call

The corresponding call with 0.999 opacity is gone, so we don't need to
reset the opacity anymore.

10 years agogtkpopover: Update the menu's alignment
Timm Bäder [Tue, 17 Mar 2015 18:34:43 +0000 (19:34 +0100)]
gtkpopover: Update the menu's alignment

... when the popover position changes.

10 years agoFix GDK MSVC Projects
Chun-wei Fan [Fri, 29 May 2015 10:10:59 +0000 (18:10 +0800)]
Fix GDK MSVC Projects

We need to link to dwmapi.lib for all configs, not just the Broadway
ones, so fix the build.

10 years agoFix a cornercase crash
Matthias Clasen [Fri, 29 May 2015 03:42:14 +0000 (23:42 -0400)]
Fix a cornercase crash

If gtk_text_layout_move_cursor_visually is called with a
count of 0, we were passing NULL to a free function that
can't handle it. Don't do that.

https://bugzilla.gnome.org/show_bug.cgi?id=750058

10 years agocssmatcher: Speed up common matching
Benjamin Otte [Thu, 28 May 2015 15:40:55 +0000 (17:40 +0200)]
cssmatcher: Speed up common matching

first-child and last-child are the most common usages of the nth-child
machinery, so special-casing them makes sense.

10 years agocssmatcher: Rewrite nth-child matcher
Benjamin Otte [Thu, 28 May 2015 15:12:57 +0000 (17:12 +0200)]
cssmatcher: Rewrite nth-child matcher

Instead of trying to be smart, be stupid but correct.

Fixes nth-child reftest.

10 years agocssmatcher: Simplify code
Benjamin Otte [Thu, 28 May 2015 15:06:53 +0000 (17:06 +0200)]
cssmatcher: Simplify code

Instead of copy/paste, pass the only difference as an argument

The code still doesn't work right, but at least it's easier to fix now.

10 years agogtk: Add deprecation guards for newest pango deprecations
Benjamin Otte [Thu, 28 May 2015 14:54:03 +0000 (16:54 +0200)]
gtk: Add deprecation guards for newest pango deprecations

10 years agotestsuite: Add deprecation guards
Benjamin Otte [Thu, 28 May 2015 14:53:53 +0000 (16:53 +0200)]
testsuite: Add deprecation guards

10 years agoUpdated Spanish translation
Daniel Mustieles [Thu, 28 May 2015 06:42:39 +0000 (06:42 +0000)]
Updated Spanish translation

10 years ago3.17.3
Matthias Clasen [Wed, 27 May 2015 21:19:56 +0000 (17:19 -0400)]
3.17.3

10 years agoUpdated Spanish translation
Daniel Mustieles [Wed, 27 May 2015 15:23:53 +0000 (15:23 +0000)]
Updated Spanish translation

10 years ago3.17.2
Matthias Clasen [Tue, 26 May 2015 17:14:01 +0000 (13:14 -0400)]
3.17.2

10 years agoDist the gtk-builder-tool test script
Matthias Clasen [Tue, 26 May 2015 18:57:49 +0000 (14:57 -0400)]
Dist the gtk-builder-tool test script

10 years agoexamples: Clean up the standalone Makefiles
Emmanuele Bassi [Tue, 19 May 2015 15:14:49 +0000 (16:14 +0100)]
examples: Clean up the standalone Makefiles

Do not hardcode GCC as the compiler; use $(shell) expansion instead of
backticks; split the built source into its own variable.

10 years agoentry: Set up text drag icon within drag_begin()
Carlos Garnacho [Thu, 21 May 2015 09:34:58 +0000 (11:34 +0200)]
entry: Set up text drag icon within drag_begin()

the drag_begin() vmethod is meant for this, and the internal DnD code
will set up a drag icon if ::drag_begin didn't do so, which means
we are first getting a "default" icon, and then replacing it with the
text surface.

This is completely harmless in X11, but causes issues on wayland as
the DnD icon window is expected to remain unchanged during DnD there.

https://bugzilla.gnome.org/show_bug.cgi?id=748763

10 years agonotebook: Fix assert in ::drag-motion
Carlos Garnacho [Tue, 26 May 2015 14:26:59 +0000 (16:26 +0200)]
notebook: Fix assert in ::drag-motion

The drag destination might be empty, we shouldn't be checking whether
it contains pages at all. Instead, check the source notebook, which
ought to have a selected page if you're dragging something from there.

https://bugzilla.gnome.org/show_bug.cgi?id=749893

10 years agoUpdated German translation
Christian Kirbach [Mon, 25 May 2015 11:26:25 +0000 (11:26 +0000)]
Updated German translation

10 years agoUse built-in gtk-update-icon-cache
Cosimo Cecchi [Tue, 19 May 2015 00:26:25 +0000 (17:26 -0700)]
Use built-in gtk-update-icon-cache

To generate the icon cache files.

We want to avoid a dependency loop if possible; additionally, on some
Debian-based systems gtk-update-icon-cache maps to the GTK2 version of
the utility and the GTK3 version is renamed to
gtk-update-icon-cache-3.0.

To avoid a build dependency on GTK2, use the binary that we just built
in-tree.

https://bugzilla.gnome.org/show_bug.cgi?id=749593

10 years agoparse-sass: don't hardcode bash path
Cosimo Cecchi [Thu, 14 May 2015 18:32:10 +0000 (11:32 -0700)]
parse-sass: don't hardcode bash path

It's /bin/bash on some systems; just use /bin/sh instead.

https://bugzilla.gnome.org/show_bug.cgi?id=749593